
COBOL debug | This configuration allows you to debug a program in the current project or workspace, like the program that is currently loaded in the editor or the program that you specified in Veryant > Main: Program. |
COBOL attach debugger | This configuration allows you to attach a remote runtime for remote debugging. By default it connects to localhost on port 9999, but you can change these parameters as explained below. |
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "COBOL", "request": "launch", "name": "COBOL debug", "commandLine": "", "stopOnEntry": true }, { "type": "COBOL", "request": "attach", "name": "COBOL attach debugger", "commandLine": "", "stopOnEntry": true, "host": "127.0.0.1", "port": 9999 } ] } |